FillRule Enumeration
Specifies how the intersecting areas of objects contained in a drawing and grafic are combined to form the area.
Namespace: Independentsoft.Office.Odf.StylesAssembly: Independentsoft.Office (in Independentsoft.Office.dll) Version: 3.0.460.1+37fe42d8e65847775742df0a70fdb403ab6fa65f
Public Enumeration FillRule
| NonZero | 0 |
Rule that determines whether a point is in the fill region by drawing a ray from that point to infinity in any direction and counting the number of path segments within the given shape that the ray crosses. If this number is odd, the point is inside; if even, the point is outside.
|
| EvenOdd | 1 |
Rule that determines whether a point is in the fill region of the path by drawing a ray from that point to infinity in any direction and then examining the places where a segment of the shape crosses the ray.
|
| None | 2 |
None.
|